Determines whether the specified System.Object is equal to the current System.Object.
Namespace:
CuttingEdge.Conditions
Assembly:
CuttingEdge.Conditions (in CuttingEdge.Conditions.dll)
Syntax
| Visual Basic (Declaration) |
|---|
<ObsoleteAttribute("This method is not part of the conditions framework. Please use the IsEqualTo method.", _
True)> _
Public Overrides Function Equals ( _
obj As Object _
) As Boolean |
| C# |
|---|
[ObsoleteAttribute("This method is not part of the conditions framework. Please use the IsEqualTo method.",
true)]
public override bool Equals(
Object obj
) |
| Visual C++ |
|---|
[ObsoleteAttribute(L"This method is not part of the conditions framework. Please use the IsEqualTo method.",
true)]
public:
virtual bool Equals(
Object^ obj
) override |
| JavaScript |
|---|
function equals(obj); |
Parameters
- obj
- Type: System..::.Object
The System.Object to compare with the current System.Object.
Return Value
true if the specified System.Object is equal to the current System.Object; otherwise, false.
See Also